Document

Introduction to one8Ui

One8Ui is a styling framework, which helps Developers to use best styles and components, by using pre-defined classnames. To get started all you need is to copy and paste the below line of code in the <head> tag of your HTML file and you can easliy use all the components.
<link rel="stylesheet" href="https://one8ui.netlify.app/css/components.css">

Starter Template

After importing the above stylesheet, the starter code would look like this
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://one8ui.netlify.app/css/components.css"> <title>one8Ui</title> </head> <body> <h1>Thanks for using one8Ui</h1> </body> </html>